home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 August (Alt) / CHIP 2005-08.1.iso / program / guvenlik / syslinux-3.07.exe / dos / stdlib.h < prev    next >
Encoding:
C/C++ Source or Header  |  2004-12-15  |  178 b   |  13 lines

  1. #ifndef STDLIB_H
  2. #define STDLIB_H
  3.  
  4. typedef int ssize_t;
  5. typedef unsigned int size_t;
  6.  
  7. void __attribute__((noreturn)) exit(int);
  8.  
  9. void *malloc(size_t);
  10. void free(void *);
  11.  
  12. #endif
  13.